Python/Recursion/Recursive function to find factorial of a number/Recursive function to find factorial of a number.py
n = int(input("Enter number: "))
def fact(n):
if n==1:
return 1
else:
return n * fact(n-1)
res = fact(n)
print(res)